Uses of Interface
com.sabro.jbusiness.database.mssql.comp.parser.Node

Packages that use Node
com.sabro.jbusiness.database.mssql.comp Agrupa as classes que compilam as Stored Procedures necessárias para o funcionamento do sistema. 
com.sabro.jbusiness.database.mssql.comp.parser Classes que fazem a interpretação da linguagem MsSql e geram a árvore sintaxica. 
 

Uses of Node in com.sabro.jbusiness.database.mssql.comp
 

Methods in com.sabro.jbusiness.database.mssql.comp that return Node
 Node CompCodigo.rootNode()
           
 

Uses of Node in com.sabro.jbusiness.database.mssql.comp.parser
 

Classes in com.sabro.jbusiness.database.mssql.comp.parser that implement Node
 class MsSqlNode
           
 class SimpleNode
           
 

Methods in com.sabro.jbusiness.database.mssql.comp.parser that return Node
 Node SimpleNode.jjtGetChild(int i)
           
 Node Node.jjtGetChild(int i)
          This method returns a child node.
 Node SimpleNode.jjtGetParent()
           
 Node Node.jjtGetParent()
           
 Node JJTParserState.peekNode()
           
 Node JJTParserState.popNode()
           
 Node Parser.rootNode()
           
 Node JJTParserState.rootNode()
           
 

Methods in com.sabro.jbusiness.database.mssql.comp.parser with parameters of type Node
 void JJTParserState.clearNodeScope(Node n)
           
 void JJTParserState.closeNodeScope(Node n, boolean condition)
           
 void JJTParserState.closeNodeScope(Node n, int num)
           
 void SimpleNode.jjtAddChild(Node n, int i)
           
 void Node.jjtAddChild(Node n, int i)
          This method tells the node to add its argument to the node's list of children.
 void SimpleNode.jjtSetParent(Node n)
           
 void Node.jjtSetParent(Node n)
          This pair of methods are used to inform the node of its parent.
 void JJTParserState.openNodeScope(Node n)
           
 void JJTParserState.pushNode(Node n)